home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 14 / CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso / CUCD / Programming / SecalDemo / Inc / prefs / overscan.inc < prev    next >
Encoding:
Text File  |  1997-06-11  |  355 b   |  20 lines

  1. include "inc/exec/types.inc";
  2. include "inc/libraries/iffparse.inc";
  3. include "inc/graphics/gfx.inc";
  4.  
  5. def OSCAN_MAGIC = $fedcba89;
  6.  
  7. struct OverscanPrefs is
  8.   os_Reserved:ulong;
  9.   os_Magic:ulong;
  10.   os_HStart:uword;
  11.   os_HStop:uword;
  12.   os_VStart:uword;
  13.   os_VStop:uword;
  14.   os_DisplayID:ulong;
  15.   os_ViewPos:Point;
  16.   os_Text:Point;
  17.   os_Standard:Rectangle;
  18. ;
  19.  
  20.